home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Plus 2002 #11
/
Amiga Plus CD - 2002 - No. 11.iso
/
Tools
/
Development
/
PowerD
/
powerd
/
source
/
lib
/
chunky_lib.lha
/
Chunky
/
HLineFast.ass
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2000-11-11
|
374 b
|
21 lines
; HLineFast(chunky:a0:PTR TO chunky,x1:d0:LONG,x2:d1:LONG,y:d2:LONG,colour:d3:LONG)(LONG)
machine mc68020
xdef _HLineFast
_HLineFast
move.l d2,-(a7)
muls.l (a0),d2
add.l d0,d2 ; d2 contains position of first pixel
sub.l d0,d1 ; d1 contains count of pixels
add.l d2,a1 ; set first position
.loop move.b d3,(a1)+
dbra.s d1,.loop
.finish move.l (a7)+,d2
rts